diff options
Diffstat (limited to 'src/pages/blog/[...slug].astro')
-rw-r--r-- | src/pages/blog/[...slug].astro | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pages/blog/[...slug].astro b/src/pages/blog/[...slug].astro index 6754653..bcd5eed 100644 --- a/src/pages/blog/[...slug].astro +++ b/src/pages/blog/[...slug].astro @@ -3,6 +3,8 @@ import { type CollectionEntry, getCollection } from "astro:content"; import Comments from "../../components/Comments.astro"; import Layout from "../../layouts/BaseLayout.astro"; +type Props = CollectionEntry<"blog">; + export async function getStaticPaths() { const posts = await getCollection("blog"); @@ -12,8 +14,6 @@ export async function getStaticPaths() { })); } -type Props = CollectionEntry<"blog">; - const post = Astro.props; const { Content, remarkPluginFrontmatter } = await post.render(); --- @@ -24,7 +24,7 @@ const { Content, remarkPluginFrontmatter } = await post.render(); } </style> -<Layout title={post.data.title} description={post.data.description}> +<Layout description={post.data.description} title={post.data.title}> <article> <section class="header"> <h1>{post.data.title}</h1> |